home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Informant Complete 1995 - 2000
/
Delphi Informant Complete 1995 to 2000.iso
/
Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar
/
1995
/
JUN
/
JA9506
/
test.pas
< prev
Wrap
Pascal/Delphi Source File
|
1995-05-04
|
379b
|
27 lines
unit Test;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, Label3d;
type
TForm1 = class(TForm)
Label3D1: TLabel3D;
Label3D2: TLabel3D;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.